@node-libraries/promise-limit
Limits the maximum number of asynchronous processes that can be executed.
The number of executions is controlled at the loop stage, so no memory is wasted in the queue.
usage
promiseLimit()
to create an instance
add()
to store Promise
wait()
waits for a specified maximum number
all()
waits for remaining processes
import { promiseLimit } from '@node-libraries/promise-limit';
const main = async () => {
const ps = promiseLimit();
for (let i = 0; i < 10; i++) {
ps.add(new Promise((resolve) => setTimeout(() => resolve(i), Math.random() * 100)));
const v = await ps.wait(5);
console.log(`${i}:${v}`);
}
(await ps.all()).forEach((v) => console.log(`*:${v}`));
};
main();
Execution result
0:false
1:false
2:false
3:false
4:3
5:1
6:2
7:4
8:0
9:6
*:5
*:7
*:8
*:9